Keycloak REST Services 1.2.0.Final

Path: / admin / realms / {realm} / roles-by-id / {role-id} / composites / clients / {app}

Return a set of client-level roles for a specific client that are in the role's composite

Path parameters:
realm - realm name (not id!)
role-id -
app -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{app}Return a set of client-level roles for a specific client that are in the role's composite

Method Detail

GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{app}

Return a set of client-level roles for a specific client that are in the role's composite

HTTP Example:
GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{app}
API Example:

RoleByIdResource.getClientRoleComposites({'realm': /* name realm name (not id!) */,
  'role-id': /* id */,
  'app': /* appName */});

Output:
Set<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.2.0.Final